home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’97 / MacsBug OSA / source code / UMacsBugApplication.h < prev   
Encoding:
Text File  |  1997-06-27  |  926 b   |  40 lines  |  [TEXT/MPS ]

  1. // UMacsBugApplication.h
  2. // Copyright © 1991-96 by Apple Computer, Inc. All rights reserved. 
  3.  
  4. /*
  5.     Change History:
  6.         ----- R11 -----
  7.         06/26/96    mdr        Install release marker.  Scope many globals.  Change TRUE/FALSE/NULL.
  8.         ----- R10 -----
  9.         ----- 3.3b1 -----
  10. */
  11.  
  12. #ifndef __UMACSBUGAPPLICATION__
  13. #define __UMACSBUGAPPLICATION__
  14.  
  15. #ifndef __UAPPLICATION__
  16. #include "UApplication.h"
  17. #endif
  18.  
  19. //----------------------------------------------------------------------------------------
  20. // TMacsBugApplication
  21. //----------------------------------------------------------------------------------------
  22.  
  23. class TMacsBugApplication: public TApplication
  24. {
  25.     MA_DECLARE_CLASS;
  26.  
  27. public:
  28.     
  29.     TMacsBugApplication();
  30.     virtual ~TMacsBugApplication();
  31.     
  32.     void IMacsBugApplication();
  33.     
  34.     virtual void DoScriptCommand(CommandNumber aCommand,
  35.                                  TAppleEvent* message,
  36.                                  TAppleEvent* reply); // override
  37. };    
  38.  
  39. #endif // __UMACSBUGAPPLICATION__
  40.